home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / transport_class.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  2KB  |  78 lines

  1. /*
  2.  * transport_class.h - a generic container for all transport classes
  3.  *
  4.  * Copyright (c) 2005 - James Bottomley <James.Bottomley@steeleye.com>
  5.  *
  6.  * This file is licensed under GPLv2
  7.  */
  8.  
  9. #ifndef _TRANSPORT_CLASS_H_
  10. #define _TRANSPORT_CLASS_H_
  11.  
  12. #include <linux/device.h>
  13. #include <linux/attribute_container.h>
  14.  
  15. struct transport_class {
  16.     struct class class;
  17.     int (*setup)(struct device *);
  18.     int (*configure)(struct device *);
  19.     int (*remove)(struct device *);
  20. };
  21.  
  22. #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg)            \
  23. struct transport_class cls = {                        \
  24.     .class = {                            \
  25.         .name = nm,                        \
  26.     },                                \
  27.     .setup = su,                            \
  28.     .remove = rm,                            \
  29.     .configure = cfg,                        \
  30. }
  31.  
  32.  
  33. struct anon_transport_class {
  34.     struct transport_class tclass;
  35.     struct attribute_container container;
  36. };
  37.  
  38. #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg)        \
  39. struct anon_transport_class cls = {                \
  40.     .tclass = {                        \
  41.         .configure = cfg,                \
  42.     },                            \
  43.     . container = {                        \
  44.         .match = mtch,                    \
  45.     },                            \
  46. }
  47.  
  48. #define class_to_transport_class(x) \
  49.     container_of(x, struct transport_class, class)
  50.  
  51. void transport_remove_device(struct device *);
  52. void transport_add_device(struct device *);
  53. void transport_setup_device(struct device *);
  54. void transport_configure_device(struct device *);
  55. void transport_destroy_device(struct device *);
  56.  
  57. static inline void
  58. transport_register_device(struct device *dev)
  59. {
  60.     transport_setup_device(dev);
  61.     transport_add_device(dev);
  62. }
  63.  
  64. static inline void
  65. transport_unregister_device(struct device *dev)
  66. {
  67.     transport_remove_device(dev);
  68.     transport_destroy_device(dev);
  69. }
  70.  
  71. int transport_class_register(struct transport_class *);
  72. int anon_transport_class_register(struct anon_transport_class *);
  73. void transport_class_unregister(struct transport_class *);
  74. void anon_transport_class_unregister(struct anon_transport_class *);
  75.  
  76.  
  77. #endif
  78.